home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 22 / AACD 22.iso / AACD / Programming / powerd / lib / powerd.lha / powerd_ppc / Bounds.ass < prev    next >
Encoding:
Text File  |  1980-01-24  |  196 b   |  19 lines

  1.  
  2. # Bounds(r3:L,r4:L,r5:L)(LONG)
  3.  
  4.     .text
  5.     .global    _Bounds
  6.  
  7. _Bounds:
  8.     cmpw    r3,r5
  9.     ble    .next
  10.     mr    r3,r5
  11.     blr
  12. .next:    cmpw    r3,r4
  13.     bgelr
  14.     mr    r3,r4
  15.     blr
  16.  
  17.     .type    _Bounds,@function
  18.     .size    _Bounds,$-_Bounds
  19.